Apache Cassandra

Apache Cassandra
Original author(s) Avinash Lakshman, Prashant Malik
Developer(s) Apache Software Foundation
Initial release 2008
Stable release 1.0.6 / December 14, 2011; 2 months ago (2011-12-14)
Development status Active
Written in Java
Operating system Cross-platform
Available in English
Type key-value store
License Apache License 2
Website cassandra.apache.org

Apache Cassandra is an open source distributed database management system. It is an Apache Software Foundation top-level project[1] designed to handle very large amounts of data spread out across many commodity servers while providing a highly available service with no single point of failure. It is a NoSQL solution that was initially developed by Facebook and powered their Inbox Search feature until late 2010.[2][3] Jeff Hammerbacher, who led the Facebook Data team at the time, has described Cassandra as a BigTable data model running on an Amazon Dynamo-like infrastructure.[4]

Cassandra provides a structured key-value store with tunable consistency.[5] Keys map to multiple values, which are grouped into column families. The column families are fixed when a Cassandra database is created, but columns can be added to a family at any time. Furthermore, columns are added only to specified keys, so different keys can have different numbers of columns in any given family.

The values from a column family for each key are stored together. This makes Cassandra a hybrid data management system between a column-oriented DBMS and a row-oriented store.[6] Also, besides using the way of modeling of BigTable, it has properties like eventual consistency, the Gossip protocol, a master-master way of serving the read and write requests that are inspired by Amazon's Dynamo.[7]

Contents

History

Apache Cassandra was developed at Facebook to power their Inbox Search feature by Avinash Lakshman (one of the authors of Amazon's Dynamo) and Prashant Malik. It was released as an open source project on Google code in July 2008.[4] In March 2009, it became an Apache Incubator project.[8] On February 17, 2010 it graduated to a top-level project.[1]
Facebook abandoned Cassandra in late 2010 when they built Facebook Messaging platform on HBase.[3]

Data model

A table in Cassandra is a distributed multidimensional map indexed by a key. The value is an object that is highly structured. The row key in a table is a string with no size restrictions, although typically 16 to 36 bytes long. Every operation under a single row key is atomic per replica no matter how many columns are being read or written into. Columns are grouped together into sets called column families very much similar to what happens in the BigTable system. Cassandra exposes two kinds of column families: Simple and Super. Super column families can be visualized as a column family within a column family. The top dimension in Cassandra is called Keyspace.

Therefore, Cassandra can handle maps with four or five dimensions:

Map with four dimensions:

  1. Keyspace → Column Family
  2. Column Family → Column Family Row
  3. Column Family Row → Columns
  4. Column → Data value

Map with five dimensions:

  1. Keyspace → Super Column Family
  2. Super Column Family → Super Column Family Row
  3. Super Column Family Row → Super Columns
  4. Super Column → Columns
  5. Column → Data value

The first dimension - Keyspace → (Super) Column Family - is limited to a (small) set of schema-predefined keys. Cassandra documentation mentions similarities of this dimension with the table definition inside a relational database.

Furthermore, applications can specify the sort order of columns within a Super Column or Simple Column family. The system allows columns to be sorted either by time or by name. Time sorting of columns is exploited by applications like Facebook Inbox Search, where the results are always displayed in time-sorted order. Any column within a column family is accessed using the convention column_family : column, and any column within a column family that is of type super is accessed using the convention column_family : super_column : column.

Clustering

When the cluster for Apache Cassandra is designed, an important point is to select the right partitioner. Two partitioners exist:[9]

  1. RandomPartitioner (RP): This partitioner randomly distributes the key-value pairs over the network, resulting in a good load balancing. Compared to OPP, more nodes have to be accessed to get a number of keys.
  2. OrderPreservingPartitioner (OPP): This partitioner distributes the key-value pairs in a natural way so that similar keys are not far away. The advantage is that fewer nodes have to be accessed. The drawback is the uneven distribution of the key-value pairs.

Features

Decentralized

Every node in the cluster has the same role. There is no single point of failure. Data is distributed across the cluster (so each node contains different data), but there is no master as every node can service any request.

Elasticity

Read and write throughput both increase linearly as new machines are added, with no downtime or interruption to applications.

Fault-tolerant

Data is automatically replicated to multiple nodes for fault-tolerance. Replication across multiple data centers is supported. Failed nodes can be replaced with no downtime.

Tunable consistency

Writes and reads offer a tunable level of consistency, all the way from "writes never fail" to "block for all replicas to be readable", with the quorum level in the middle.

Query Language

New for 0.8 is CQL (Cassandra Query Language), an SQL-alike alternative to the traditional RPC interface. Language drivers are available for Java (JDBC) and Python (DBAPI2).

Prominent users

See also

References

  1. ^ a b "Cassandra is an Apache top level project". Mail-archive.com. 2010-02-18. http://www.mail-archive.com/cassandra-dev@incubator.apache.org/msg01518.html. Retrieved 2010-03-29. 
  2. ^ a b "Niet compatibele browser". Facebook. http://www.facebook.com/note.php?note_id=24413138919&id=9445547199&index=9. Retrieved 2010-03-29. 
  3. ^ a b c Kannan Muthukkaruppan. "The Underlying Technology of Messages". http://www.facebook.com/notes/facebook-engineering/the-underlying-technology-of-messages/454991608919. 
  4. ^ a b James Hamilton (July 12, 2008). "Facebook Releases Cassandra as Open Source". http://perspectives.mvdirona.com/2008/07/12/FacebookReleasesCassandraAsOpenSource.aspx. Retrieved 2009-06-04. 
  5. ^ http://www.cs.cornell.edu/projects/ladis2009/papers/lakshman-ladis2009.pdf
  6. ^ Vishal Shinde (2011-01-19). "Apache Cassandra". http://www.linuxquestions.in/: Linux Questions, Help, Howtos and Tutorials. http://www.linuxquestions.in/other-databases/apache-cassandra/?action=printpage. Retrieved 2010-03-09. "The values from a column family for each key are stored together, making Cassandra a hybrid between a column-oriented DBMS and a row-oriented store" 
  7. ^ Olivier Mallassi (2010-06-09). "Let’s play with Cassandra… (Part 1/3)". http://blog.octo.com/: OCTO Talks. http://blog.octo.com/en/nosql-lets-play-with-cassandra-part-13/. Retrieved 2010-03-22. "Hybrid firstly because Cassandra uses a column-oriented way of modeling data (inspired by the BigTable) and permit to use Hadoop Map/Reduce jobs and secondly because it uses patterns inspired by Dynamo like Eventually Consistent, Gossip protocols, a master-master way of serving both read and write requests…" 
  8. ^ "Is this the new hotness now?". Mail-archive.com. 2009-03-02. http://www.mail-archive.com/cassandra-dev@incubator.apache.org/msg00004.html. Retrieved 2010-03-29. 
  9. ^ Dominic Williams. "Cassandra: RandomPartitioner vs OrderPreservingPartitioner". http://wordpress.com/: WordPress.com. http://ria101.wordpress.com/2010/02/22/cassandra-randompartitioner-vs-orderpreservingpartitioner/. Retrieved 2011-03-23. "When building a Cassandra cluster, the “key” question (sorry, that’s weak) is whether to use the RandomPartitioner (RP), or the OrderPreservingPartitioner (OPP). These control how your data is distributed over your nodes. Once you have chosen your partitioner, you cannot change without wiping your data, so think carefully! The problem with OPP: If the distribution of keys used by individual column families is different, their sets of keys will not fall evenly across the ranges assigned to nodes. Thus nodes will end up storing preponderances of keys (and the associated data) corresponding to one column family or another. If as is likely column families store differing quantities of data with their keys, or store data accessed according to differing usage patterns, then some nodes will end up with disproportionately more data than others, or serving more “hot” data than others." 
  10. ^ cite web|url=http://appscale.cs.ucsb.edu/datastores.html#cassandra
  11. ^ "Re: Cassandra users survey". Mail-archive.com. 2009-11-21. http://www.mail-archive.com/cassandra-dev@incubator.apache.org/msg01163.html. Retrieved 2010-03-29. 
  12. ^ Matt Abrams (2011-05-05). "Clearsprings Big Data Architecture Part 1". http://clearspring.com/blog/2011/05/05/clearsprings-big-data-architecture-part-1. 
  13. ^ https://www.cloudkick.com/blog/2010/mar/02/4_months_with_cassandra/
  14. ^ http://cloudtalk.com/the-cloudtalk-platform.html
  15. ^ Klint Finley (2011-02-18). "This Week in Consolidation: HP Buys Vertica, Constant Contact Buys Bantam Live and More". Read Write Enterprise. http://www.readwriteweb.com/enterprise/2011/02/this-week-in-consolidation-hp.php. 
  16. ^ Ian Eure. "Looking to the future with Cassandra". http://blog.digg.com/?p=966. 
  17. ^ John Quinn. "Saying Yes to NoSQL; Going Steady with Cassandra". http://about.digg.com/node/564. 
  18. ^ Erick Schonfeld. "As Digg Struggles, VP Of Engineering Is Shown The Door". http://techcrunch.com/2010/09/07/digg-struggles-vp-engineering-door/. 
  19. ^ "Is Cassandra to Blame for Digg v4's Failures?". http://www.quora.com/Is-Cassandra-to-blame-for-Digg-v4s-technical-failures/. 
  20. ^ http://www.datastax.com/wp-content/uploads/2011/03/CS-DigitalReasoning.pdf
  21. ^ "Powered by Google Docs". Docs.google.com. http://docs.google.com/viewer?url=http://ewh.ieee.org/r6/scv/computer//nfic/2009/IBM-Jun-Rao.pdf. Retrieved 2010-03-29. 
  22. ^ http://www.cloudsandra.com/
  23. ^ Manicka Babu (2011-05-22). "Cassandra Part 1". http://manickababu.blogspot.com/2011/05/cassandra-part-1.html. 
  24. ^ Todd Hoff (2011-02-08). "Mollom Architecture - Killing Over 373 Million Spams at 100 Requests per Second". High Scalability. http://highscalability.com/blog/2011/2/8/mollom-architecture-killing-over-373-million-spams-at-100-re.html. 
  25. ^ cite web|url=http://www.slideshare.net/adrianco/migrating-netflix-from-oracle-to-global-cassandra
  26. ^ Yury Izrailevsky (2011-01-28). "NoSQL at Netflix". http://techblog.netflix.com/2011/01/nosql-at-netflix.html. 
  27. ^ Martin Cozzi (2011-08-31). "Cassandra at Formspring". http://www.slideshare.net/martincozzi/cassandra-formspring. 
  28. ^ {{cite web|url=http://www.datastax.com/wp-content/uploads/2011/06/DataStax-CaseStudy-Mahalo.pdf
  29. ^ http://blip.tv/datastax/cassandra-at-mahalo-com-4030941
  30. ^ http://www.datastax.com/wp-content/uploads/2011/04/WP-Ooyala.pdf
  31. ^ http://www.datastax.com/wp-content/uploads/2011/05/DataStax-CaseStudy-Openwave.pdf
  32. ^ http://openx.com/publisher/technology
  33. ^ Nathan Milford. "Cassandra for Sysadmins". http://techblog.outbrain.com/2011/08/slides-cassandra-for-sysadmins/. 
  34. ^ Preston Smalley (2011-03-20). "An important milestone - and it's only the beginning!". http://blog.plaxo.com/2011/03/an-important-milestone-and-its-only-the-beginning/. 
  35. ^ Ilya Grigorik (2011-03-29). "Webpulp TV: Scaling PostRank with Ilya Grigorik". http://blog.postrank.com/2011/03/webpulp-tv-scaling-postrank-with-ilya-grigorik/. 
  36. ^ "Hadoop and Cassandra (at Rackspace)". Stu Hood. 2010-04-23. http://www.slideshare.net/stuhood/hadoop-and-cassandra-at-rackspace. Retrieved 2011-09-01. 
  37. ^ Posted by david [ketralnis] (2010-03-12). "what's new on reddit: She who entangles men". blog.reddit. http://blog.reddit.com/2010/03/she-who-entangles-men.html. Retrieved 2010-03-29. 
  38. ^ Posted by the reddit admins at (2010-05-11). "blog.reddit -- what's new on reddit: reddit's May 2010 "State of the Servers" report". blog.reddit. http://blog.reddit.com/2010/05/reddits-may-2010-state-of-servers.html. Retrieved 2010-05-16. 
  39. ^ Dathan Vance Pattishall (2011-03-23). "Cassandra is my NoSQL Solution but". http://mysqldba.blogspot.com/2010/03/cassandra-is-my-nosql-solution-but.html. 
  40. ^ Alexander Muse (2011-07-18). "Shopsavvy leverages Hadoop and Cassandra". http://shopsavvy.mobi/2011/07/18/shopsavvy-leverages-hadoop-and-cassandra/. 
  41. ^ Klint Finley. "How SimpleGeo Built a Scalable Geospatial Database with Apache Cassandra". Read Write Cloud. http://www.readwriteweb.com/cloud/2011/02/video-simplegeo-cassandra.php. 
  42. ^ "Cassandra at SoundCloud". http://berlinbuzzwords.de/sites/berlinbuzzwords.de/files/cassandra%20workshop%20berlin%20buzzword%202011-%20Soundcloud.pdf. 
  43. ^ Popescu, Alex. "Cassandra @ Twitter: An Interview with Ryan King". myNoSQL. http://nosql.mypopescu.com/post/407159447/cassandra-twitter-an-interview-with-ryan-king. Retrieved 2010-03-29. 
  44. ^ Babcock, Charles. "Twitter Drops MySQL For Cassandra - Cloud databases". InformationWeek. http://www.informationweek.com/news/software/open_source/showArticle.jhtml?articleID=223100894&pgno=1&queryText=&isPrev=. Retrieved 2010-03-29. 
  45. ^ "Cassandra at Twitter Today". http://engineering.twitter.com/2010/07/cassandra-at-twitter-today.html. 
  46. ^ Erik Onnen. "From 100s to 100s of Millions". http://www.slideshare.net/eonnen/from-100s-to-100s-of-millions. 
  47. ^ Hartmut Bohmer. "Low Volt Smart System". http://www.utillabs.com. 
  48. ^ Karl Mueller. "Cassandra on SSD". http://blog.kosmix.com/2011/01/21/cassandra-on-ssd/. 
  49. ^ "Yakaz Technologies". http://www.yakaz.com/about/technologies.php. 

Bibliography

External links